home *** CD-ROM | disk | FTP | other *** search
/ Popular Request / By Popular Request (Arsenal Computer)(SysOptics Distribution System).ISO / amiga3 / nwgccstr.lha / source.lha / stubs / _malloc.c < prev    next >
C/C++ Source or Header  |  1994-03-13  |  339b  |  14 lines

  1. #include <exec/nodes.h>
  2. #include <exec/lists.h>
  3.  
  4. extern void __freeall(void); /* Funktion zum l÷schen des allozierten Speichers */
  5.  
  6. static void (*a)(void)=&__freeall;
  7.  
  8. struct MinList __memorylist= /* Liste des belegten Speichers (leer) */
  9. {
  10.   (struct MinNode *)&__memorylist.mlh_Tail,
  11.   NULL,
  12.   (struct MinNode *)&__memorylist.mlh_Head
  13. };
  14.